-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release-23.1: changefeedccl: Add jitter to aggregator flushes #114748
release-23.1: changefeedccl: Add jitter to aggregator flushes #114748
Conversation
Add jitter, controlled by the `changefeed.aggregator.flush_jitter` setting (default 10%) to the aggregator flush logic. This helps mitigate the load place on the changefeed coordinator by spreading out the time arregators decide to flush. Informs cockroachdb#114133 Release note: None
Thanks for opening a backport. Please check the backport criteria before merging:
If your backport adds new functionality, please ensure that the following additional criteria are satisfied:
Also, please add a brief release justification to the body of your PR to justify this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 4 of 4 files at r1, all commit messages.
Reviewable status: complete! 0 of 0 LGTMs obtained (waiting on @dt, @jayshrivastava, and @nicktrav)
-- commits
line 5 at r1:
Isn't this value disabled by default in the backport?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: complete! 0 of 0 LGTMs obtained (waiting on @dt, @jayshrivastava, and @nicktrav)
Previously, sean- (Sean Chittenden) wrote…
Isn't this value disabled by default in the backport?
yes, it is in the backport, but I didn't change the original PR description.
Backport 1/1 commits from #114161.
/cc @cockroachdb/release
Backport defaults
changefeed.aggregator.flush_jitter
to 0 (disabled).Release justification: scalability improvement
Add jitter, controlled by the
changefeed.aggregator.flush_jitter
setting (default 10%) to the aggregator flush logic.
This helps mitigate the load place on the changefeed coordinator
by spreading out the time aggregators decide to flush.
Informs #114133
Release note: None